home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 476-500 / disk_479 / uucp / uucp113.2.lzh / uucp2 / man / L.Sys < prev    next >
Text File  |  1991-02-10  |  6KB  |  147 lines

  1.  
  2. NAME
  3.     UULIB:L.Sys
  4.  
  5. DESCRIPTION
  6.  
  7.     The L.Sys file is used by UUCico and sendmail (that is, Mail
  8.     and DMail) to get information about one or more UUCP nodes
  9.     that you can call.
  10.  
  11.     An example L.Sys entry:
  12.  
  13.     ------------------------------- (this line not part of the file)
  14.  
  15. #   This is a comment.
  16.  
  17. A500 Any SER: 9600 5551344 ogin: uover sword: qwee\r
  18. cae780 Any SER: 2400 5555667 ogin: Udillon sword: xarbge\r
  19. spooge Any SER: 2400 5551234 ogin: uucp sword: gugg\r
  20. sorinc Any SER: 2400 ATM1&E0DT5551111 ogin: uover sword: bleg\r
  21. #this is commented out.
  22. #postgres Any SER: 9600 5556783 ogin: dillon sword: foobarb\r
  23.  
  24.     ------------------------------- (this line not part of the file)
  25.  
  26.     The first field is the name of the machine in question.
  27.     CASE IS IMPORTANT.    Most machines use all lower-case names.
  28.  
  29.     The second field (Any in the examples above) has been implemented
  30.     for 1.06D and beyond.  There are no spaces anywhere in the field:
  31.  
  32.         Any         the system can be called at any time
  33.  
  34.         Never        the system can never be calleod
  35.  
  36.         hh:mm-hh:mm     any day in the hour range indicated (24hr time)
  37.  
  38.         MoTuWeThFrSaSuhh:mm-hh:mm
  39.                 On the days indicated in the hour range indicated.
  40.  
  41.         <timespec>,<timespec>
  42.         MoTuWeThFr02:00-03:00,SaSu00:00-23:59
  43.                 On the days indicated in the hour range indicated,
  44.                 time specs separated by commas.
  45.  
  46.  
  47.     The third field is currently not used by AmigaUUCP but should
  48.     remain SER: for future compatibility.  The SER: device is not
  49.     actually used by UUCICO.
  50.  
  51.     The fourth field is the call-out baud rate.  Call-in baud rates
  52.     (that is, receiving a call) are determined by Getty and/or the
  53.     modem if it is a smart modem.
  54.  
  55.     The fifth field is the phone number to call to reach the
  56.     machine in question.  Two forms are allowed for the phone number:
  57.  
  58.     Form1:        5551234
  59.  
  60.     Form2:        AT<commands>D[T/P]5551234
  61.  
  62.     If just the number is given uucico will automatically prepend ATDT.  If
  63.     the phone number starts with AT then uucico will send the string
  64.     verbatim.  Normally the second form is used to turn on special
  65.     modes of a smart modem for specific sites.    WARNING, to properly
  66.     turn off any modes you turn on in this manner it is suggested you
  67.     add appropriate AT commands to the GETTY command line when you start up
  68.     your GETTY (that GETTY runs whenever it resets the modem).  Also,
  69.     note that if uucico calls up several systems in one gulp the
  70.     special modem options you might specify in Form2 will not be
  71.     turned off unless you use Form 2 for all dial strings, like this:
  72.  
  73.     cae780 Any SER: 2400 AT&E1DT5555667 ogin: Udillon sword: xarbge\r
  74.     spooge Any SER: 2400 AT&E0DT5551234 ogin: uucp sword: gugg\r
  75.  
  76.     Remaining fields are expect-send strings.  Once uucico dials out and
  77.     reaches the machine in question, it must login into that machine
  78.     using the proper login and password.  To do this you specify a
  79.     series of strings alternating between a string to expect from the
  80.     remote machine, and a string to send when the preceding string is
  81.     found.  The fields are always in the order expect send expect
  82.     send expect send expect ...until the end of the line.  The expect
  83.     field may be "" (two quote characters) to indicate we expect nothing
  84.     and should immediately move to the next (send) field.
  85.  
  86.     The example below may be read as follows.  Wait for 'ogin:' to be
  87.     sent.  When it is, send the user name 'uugenly'.  When the remote
  88.     machine asks for a password by sending 'sword:', send the password
  89.     'garbage9'.
  90.  
  91.            ogin: uugenly sword: garbage9
  92.  
  93.     If an expect string is not found in fifteen seconds, the connection
  94.     fails and uucico will hang up.  It is possible to specify an
  95.     alternate send expect sequence to use in the event of a timeout.
  96.     Simply follow the expect string by pairs of send expect strings all
  97.     seperated by '-'s.  No spaces are permitted in this extended expect
  98.     string.  Each time a timeout occurs, the next string in this
  99.     sequence will be sent, and then the string following that will be
  100.     expected.  Successive pairs of strings will be sent and expected
  101.     until either the total expect string has been used up, in which case
  102.     uucico will hang up, or if an expected string is received from the
  103.     remote machine, then the extended expect string will be skipped, and
  104.     the following send field will be sent.  This feature is very useful
  105.     if the remote site answers using the wrong baud rate and you must
  106.     send a break to force it to use another.
  107.  
  108.     The example below may be read as follows:  Wait for the login
  109.     message by looking for 'ogin:'.  If it doesn't come, then send a
  110.     break (\c\b), and wait for 'ogin:' again.  If it doesn't come, send
  111.     a break again and wait for 'ogin:'.  If 'ogin:' does not arrive this
  112.     time, hang up.  If 'ogin:' were to arrive at any of these expected
  113.     times, then the extended expect string would be skipped and the next
  114.     send string would send the user name 'uugenly'.  The rest is as
  115.     before.
  116.  
  117.     ogin:-\c\b-ogin:-\c\b-ogin: uugenly sword: garbage9
  118.  
  119.  
  120.  
  121.     Special character sequences within a send field are recognized:
  122.  
  123.     \b        send break.
  124.     \r        write a carriage return
  125.     \n        write a line feed
  126.     \\        a backslash
  127.     \t        a tab character
  128.     \d        a 2 second delay occurs before further processing takes place
  129.     \s        a space
  130.     \c        Normally the send field is automatically terminated with
  131.         a CR.  This DISABLES that.
  132.  
  133.     As you will note by the above example, we usually do not have the
  134.     first character of an expected string.  This is because the
  135.     expect-send fields are case sensitive and some machines say
  136.     'login:' while others say 'Login:'... so we wait for 'ogin:'.
  137.  
  138.     Refer to GETTY:Passwd (Man Passwd) on how to set up a login name
  139.     and password for incomming calls.
  140.  
  141. REFERENCES
  142.  
  143.     man/Passwd
  144.     man/UUCico
  145.     man/Getty
  146.  
  147.